home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 233 / Computer Shopper 233 / ComputerShopperDVD233.iso / mpf / eng / shared / agentdui.cab / scui.dll / HTML / OEMIDS.VBS < prev    next >
Encoding:
Text File  |  2005-07-27  |  2.2 KB  |  59 lines

  1. ' registry entry area for oem .ini file
  2. Const DB_REGKEY_OEM_LINK_STR  = "HKLM\SOFTWARE\McAfee.com\Agent\SecurityNews\oem"
  3. Const DB_OEM_INI              = "content_file"
  4. Const DEF_OEM_INI_FILE = "\oemcfg.ini"
  5.  
  6. Const DB_REGKEY_OEM              = "HKLM\SOFTWARE\McAfee.com\Agent\Oem"
  7. Const DB_REGVAL_OEMID          = "OemId"
  8.  
  9. ' .ini file sections
  10. Const MYS_SECTION = "mys"
  11. Const VSO_SECTION = "vso"
  12. Const MPF_SECTION = "mpf"
  13. Const MPS_SECTION = "mps"
  14. Const MSK_SECTION = "msk"
  15.  
  16. Const UPSELL_SECTION = "upsellurls"
  17.  
  18. Const OEMINI_SEC_CEN_LOGO_FILE  = "SecurityCenterLogoFile"
  19. Const OEMINI_EXPIRY_INFO        = "ExpiryInfo"
  20. Const OEMINI_SECURITY_INDEX     = "Security_Index"
  21.  
  22. Const OEMINI_SHOWTABS_SECTION               = "ShowTabs"
  23. Const OEMINI_OEMNEWS_SECTION                = "OEM"
  24. Const OEMINI_OEMNEWS_VALUE                  = "OemNews"
  25. Const OEMINI_OEMTITLE_VALUE                 = "OemTitle"
  26. Const OEMINI_SHOWSECNEWS_KEY                = "ShowSecNews"
  27. Const OEMINI_SHOWSTORELINK_KEY              = "ShowStoreLink"
  28. Const OEMINI_SHOW_CUSTSUPPORT_LINK_KEY      = "ShowCustSupport"
  29. Const OEMINI_SHOW_HELP_LINK_KEY             = "ShowHelp"
  30.  
  31. Const OEMINI_CUSTOM_CUSTSUPPORT_LINK        = "CustSupportLink"
  32. Const OEMINI_CUSTOM_HELP_LINK               = "HelpLink"
  33.  
  34. Const OEMINI_UPSELL_WINFW                    = "WinFWUpsell"
  35. Const OEMINI_UPSELL_NAVAV                    = "NAVUpsell"
  36.  
  37. Const OEMINI_HIDE_FREE_SCAN = "HideFreeScan"
  38. Const OEMINI_HIDE_BE_NOTIFIED = "HideBeNotified"
  39. Const OEMINI_HIDE_FIND_OUT_MORE = "HideFindOutMore"
  40. Const OEMINI_HIDE_SPAM_TIPS = "HideSpamTips"
  41. Const OEMINI_HIDE_CHAT_TIPS = "HideOnlineChatTips"
  42. Const OEMINI_HIDE_REPORT_CRIME = "HideInternetCrimes"
  43.  
  44.  
  45. '.ini section attributes
  46. Const SHOW_TRIAL        = "ShowTrial"
  47. Const OEMINI_APP_NAME   = "AppName"
  48. Const OEMINI_PLUS_KEY   = "Plus"
  49. Const TRIAL_TOPBAR_DESC = "TrialTopBarDesc"
  50. Const TRIAL_TITLE       = "TrialTitle"
  51. Const TRIAL_DESC        = "TrialDesc"
  52. Const TRIAL_ACTION_LINK = "TrialActionLink"
  53. Const TRIAL_ACTION_DESC = "TrialActionDesc"
  54. Const PUR_TOPBAR_DESC   = "PurTopBarDesc"
  55. Const PUR_TITLE         = "PurTitle"
  56. Const PUR_DESC          = "PurDesc"
  57. Const PUR_ACTION_LINK   = "PurActionLink"
  58. Const PUR_ACTION_DESC   = "PurActionDesc"
  59.